home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / csystray.000 / csystray / devnotes.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-22  |  1.2 KB  |  51 lines

  1. // devnotes.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "systray.h"
  6. #include "devnotes.h"
  7.  
  8. #ifdef _DEBUG
  9. #undef THIS_FILE
  10. static char BASED_CODE THIS_FILE[] = __FILE__;
  11. #endif
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CDialogDevelNotes dialog
  15.  
  16.  
  17. CDialogDevelNotes::CDialogDevelNotes(CWnd* pParent /*=NULL*/)
  18.     : CDialog(CDialogDevelNotes::IDD, pParent)
  19. {
  20.     //{{AFX_DATA_INIT(CDialogDevelNotes)
  21.         // NOTE: the ClassWizard will add member initialization here
  22.     //}}AFX_DATA_INIT
  23. }
  24.  
  25.  
  26. void CDialogDevelNotes::DoDataExchange(CDataExchange* pDX)
  27. {
  28.     CDialog::DoDataExchange(pDX);
  29.     //{{AFX_DATA_MAP(CDialogDevelNotes)
  30.         // NOTE: the ClassWizard will add DDX and DDV calls here
  31.     //}}AFX_DATA_MAP
  32. }
  33.  
  34.  
  35. BEGIN_MESSAGE_MAP(CDialogDevelNotes, CDialog)
  36.     //{{AFX_MSG_MAP(CDialogDevelNotes)
  37.     //}}AFX_MSG_MAP
  38. END_MESSAGE_MAP()
  39.  
  40.  
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CDialogDevelNotes message handlers
  43.  
  44. BOOL CDialogDevelNotes::OnInitDialog() 
  45. {
  46.     CDialog::OnInitDialog();
  47.     CenterWindow();
  48.     return TRUE;  // return TRUE unless you set the focus to a control
  49.                   // EXCEPTION: OCX Property Pages should return FALSE
  50. }
  51.